home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / ShareMailGiftware / AmigaTalk / general / UndefinedObject.st < prev   
Text File  |  2002-10-27  |  312b  |  16 lines

  1. "----------------------------------------------------------------"
  2. "'nil' Should be the only Undefined Object in the system.        "
  3. "----------------------------------------------------------------"
  4.  
  5. Class UndefinedObject :Object
  6. [
  7.    isNil
  8.      ^ true
  9. |
  10.    notNil
  11.      ^ false
  12. |
  13.    printString
  14.      ^ 'nil'
  15. ]
  16.